Package-level declarations
Types
A strict queue with the given capacity. The differences from java.util.ArrayDeque are:
Inherited functions
Retrieves the value associated with the specified key in the map and casts it as V. If the key is not present, throws a NoSuchElementException with the given message.
Retrieves the value associated with the specified key in the map, casts it as V, and wraps the result in a Result object. If the key is not present or the cast fails, the exception is encapsulated within the Result.
Returns the Result of BooleanArray.get call.
Returns the Result of ByteArray.get call.
Returns the Result of CharArray.get call.
Returns the Result of DoubleArray.get call.
Returns the Result of FloatArray.get call.
Returns the Result of IntArray.get call.
Returns the Result of LongArray.get call.
Returns the Result of ShortArray.get call.
Returns the Result of Array.getOrThrow call.
Returns the Result of BooleanArray.getOrThrow call.
Returns the Result of ByteArray.getOrThrow call.
Returns the Result of CharArray.getOrThrow call.
Returns the Result of DoubleArray.getOrThrow call.
Returns the Result of FloatArray.getOrThrow call.
Returns the Result of IntArray.getOrThrow call.
Returns the Result of LongArray.getOrThrow call.
Returns the Result of ShortArray.getOrThrow call.
Returns the Result of List.getOrThrow call.
Returns the Result of Map.getOrThrow call.
Applies action to the receiver if it's not empty.
Returns the last non-null element produced by transform function or throws NoSuchElementException otherwise.
Returns the last non-null element produced by transform function or null otherwise. The element is found by iterating the collection in reverse order.
Returns the last non-null element produced by transform function or null otherwise. The element is found by iterating through all elements, capturing the last matching one.
Pretty-prints the provided collection in JSON array style.
Pretty-prints the provided map in JSON dictionary style.